@media screen and (min-width: 1080px) {

    
    /***** Faux controles *****/
    .fakeControl {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .fakeControl {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
    }
    .fakeControl svg {
        position: absolute;
        width: 20px;
        z-index: 2;
    }
    .fakeControl svg {
        background: var(--secondary);
        border: 2px solid var(--secondary);
        border-radius: 50%;
        box-shadow: 0 0 5px #000;
        padding: 10px;
        color: #fff;
    }
    .fakeControlPrev {
        left: -10px;
    }
    .fakeControlNext {
        right: 10px;
    }
    
    /***** Vrais controles *****/
    .controlNext, .controlPrev {
        position: absolute;
        top: 0;
        cursor: pointer;
        transition: transform 0.3s, opacity 0.3s;
    }
    .controlNext, .controlPrev {
        width: 4%;
        height: 100%;
        display: inline-block;
        z-index: 3;
    }
    .controlPrev {
        right: auto;
        left: -2%;
    }
    .controlNext {
        left: auto;
        right: 0;
    }
    .controlNext--hidden, .controlPrev--hidden {
        opacity: 0;
    }
    
    /***** Pagination
    .sliderPagination {
        position: absolute;
        bottom: 20px;
        right: 35px;
        text-align: center;
        display: none;
    }
    .sliderPaginationButton {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 3.5px;
        cursor: pointer;
    }
    .sliderPaginationButton {
        border-radius: 50%;
        background-color: #444;
        box-shadow: 0 0 5px #00000038;
        transition: transform 0.3s;
    }
    .sliderPaginationButton--active, .slider-pagination-button:hover {
      background-color: #fff;
    }
    *****/


}